home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / StdioFileOpenMode.c < prev    next >
C/C++ Source or Header  |  1989-03-10  |  2KB  |  85 lines

  1. /* 
  2.  * StdioFileOpenMode.c --
  3.  *
  4.  *    Source code for the "StdioFileOpenMode" procedur used internally
  5.  *    in the stdio library.
  6.  *
  7.  * Copyright 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/StdioFileOpenMode.c,v 1.3 89/03/10 18:50:51 douglis Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21. #include "stdio.h"
  22. #include "fileInt.h"
  23. #include "stdlib.h"
  24. #include <sys/file.h>
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * StdioFileOpenMode --
  30.  *
  31.  *    Given an access mode string, return the corresponding flags to
  32.  *    pass to open.
  33.  *
  34.  * Results:
  35.  *    The return value is a the flags to pass to open when opening
  36.  *    a file in the given access mode.  -1 is returned if the
  37.  *    access string isn't legal.
  38.  *
  39.  * Side effects:
  40.  *    None.
  41.  *
  42.  *----------------------------------------------------------------------
  43.  */
  44.  
  45. int
  46. StdioFileOpenMode(access)
  47.     char *access;        /* Indicates type of access, as passed
  48.                  * to fopen and freopen. */
  49. {
  50.     int     flags;
  51.     char    nextChar;
  52.  
  53.     nextChar = access[1];
  54.     if (nextChar == 'b') {
  55.     nextChar = access[2];
  56.     }
  57.     switch (access[0]) {
  58.     case 'r':
  59.         if (nextChar == '+') {
  60.         flags = O_RDWR;
  61.         } else {
  62.         flags = O_RDONLY;
  63.         }
  64.         break;
  65.     case 'w':
  66.         if (nextChar == '+') {
  67.         flags = O_RDWR | O_CREAT | O_TRUNC;
  68.         } else {
  69.         flags = O_WRONLY | O_CREAT | O_TRUNC;
  70.         }
  71.         break;
  72.     case 'a':
  73.         if (nextChar == '+') {
  74.         flags = O_CREAT | O_RDWR;
  75.         } else {
  76.         flags = O_CREAT | O_WRONLY;
  77.         }
  78.         break;
  79.     default:
  80.         return -1;
  81.         break;
  82.     }
  83.     return flags;
  84. }
  85.